home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / lyap / Imakefile next >
Makefile  |  1995-05-09  |  2KB  |  44 lines

  1. #
  2. #   @(#) Imakefile 12.1 95/05/09 SCOINC
  3. #
  4. #*************************************************************************
  5. #*                                                                       *
  6. #*     Copyright (c) 1992-1993                  Ronald Joe Record        *
  7. #*                                                                       *
  8. #*  All rights reserved. No part of this program or publication may be   *
  9. #*  reproduced, transmitted, transcribed, stored in a retrieval system,  *
  10. #*  or translated into any language or computer language, in any form or *
  11. #*  by any means, electronic, mechanical, magnetic, optical, chemical,   *
  12. #*  biological, or otherwise, without the prior written permission of:   *
  13. #*                                                                       *
  14. #*              Ronald Joe Record                        (408) 458-3718  *
  15. #*              212 Owen St., Santa Cruz, California 95062 USA           *
  16. #*                                                                       *
  17. #*************************************************************************
  18.  
  19. #
  20. #        Imakefile for lyap, by Ron Record
  21. #
  22.         DEPLIBS = $(DEPXLIB)
  23.          MANDIR = /usr/man/man.CONTRIB
  24.   LYAP_INST_DIR = $(DESTDIR)/usr/local/lib/lyap
  25.       MANSUFFIX = CONTRIB
  26. #    Uncomment the following line if your system doesn't support prototypes 
  27. #    PROTODEFINE = -D_NO_PROTO
  28. #    -DMAPS includes code to support "Function forcing". See lyap.man (-F)
  29.       MAPDEFINE = -DMAPS
  30.         DEFINES = $(MAPDEFINE) $(PROTODEFINE)
  31.        INCLUDES = -I. -I../lib
  32. LOCAL_LIBRARIES = ../lib/libXrr.a $(XLIB) 
  33.   SYS_LIBRARIES = -lm $(NAPLIB)
  34.            SRCS = lyap.c
  35.            OBJS = lyap.o
  36.  
  37. ComplexProgramTarget(lyap)
  38.  
  39. install:: install.man
  40.     @if [ ! -d $(LYAP_INST_DIR) ]; then mkdir -p $(LYAP_INST_DIR); fi
  41.     @cd ./params; set -x; for file in *; do \
  42.         $(INSTALL) -c $(INSTDATFLAGS) $$file $(LYAP_INST_DIR); \
  43.     done
  44.